home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Graphic Gems I, II & III (C_C++) / Graphics Gems C Code.sea / GemsI / Src / AALines / 00README next >
Text File  |  1992-06-16  |  1KB  |  35 lines

  1. This group of files is a simple demonstration of an anti-aliased line
  2. renderer from _Grahpics_Gems_.  Files in the release are:
  3.  
  4.   00README -- This information file.
  5.  
  6.   Makefile -- Makefile for creating the demo executable.
  7.  
  8.   AALines.h -- Include file for demo source files.
  9.  
  10.   AALines.c -- Rendering code from _Grahpics_Gems_ pages 690-693.
  11.  
  12.   AATables.c -- Initialization code for frame buffer and lookup tables.
  13.  
  14.   AAMain.c -- Calling routine for the renderer.
  15.  
  16.   utah.h -- Include file for friendly Utah RLE front end.
  17.  
  18.   utah.c -- Source for friendly Utah RLE front end.
  19.  
  20. As it is written, the program dumps its frame buffer to a Utah RLE
  21. file.  You need to obtain the Utah RLE library from another source;
  22. try the following FTP sites:
  23.  
  24.         cs.utah.edu (128.110.4.21)
  25.         weedeater.math.yale.edu (130.132.23.17)
  26.         freebie.engin.umich.edu (35.2.68.23)
  27.  
  28. It should be fairly easy to dump the frame buffer to another type
  29. of file, or straight to a display device.  See AAMain.c.
  30.  
  31. Have fun.
  32.  
  33.     -- Kelvin Thompson, 18 August 1990
  34.        kelvin@cs.utexas.edu
  35.